/* CAPÍTULOS (SUBFRENTES) */
.subfrentes {
    transition: all 0.3s ease;
}

.linha-capitulo {
    background: #0a0a0a;
    border-left: 3px solid #00ffcc33;
    cursor: default;
}

.linha-capitulo:hover {
    background: #0e0e0e;
    transform: none;
    box-shadow: none;
}

.linha-capitulo.comandante-row {
    background: linear-gradient(90deg, #1a1500, #0a0a0a);
    border-left: 3px solid var(--patente-comandante);
}

.capitulo-cell {
    padding: 14px 20px;
}

.capitulo-indent {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 48px;
}

.capitulo-marker {
    color: #00ffcc;
    font-size: 14px;
    opacity: 0.8;
    font-weight: bold;
}

.capitulo-nome {
    font-size: 14px;
    color: #ddd;
    letter-spacing: 0.5px;
    font-weight: 500;
}